home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / scilab / man / man-part2 / cat4 / chaintest.4 < prev    next >
Text File  |  1999-09-16  |  1KB  |  67 lines

  1.  
  2.  
  3.  
  4. chaintest(1)                   Scilab Function                   chaintest(1)
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11. NAME
  12.   chaintest - a three-species food chain model
  13.  
  14. CALLING SEQUENCE
  15.   chaintest([f_l,b1,odem,xdim,npts])
  16.   [xdot]=chain(t,x)
  17.   [z1]=ch_f1(u)
  18.   [z2]=ch_f2(u)
  19.  
  20. PARAMETERS
  21.   f_l  : the name of the macro which code the three-species food chain model
  22.        (default value  chain).
  23.   odem,xdim,npts
  24.        : are optional arguments. Their meaning and syntax can be found in the
  25.        portr3d  help
  26.  
  27. DESCRIPTION
  28.   A call to the function chaintest() will interactively display a phase por-
  29.   trait of  a three-species food chain model given by:
  30.           ff1= f1(x(1))
  31.           ff2= f2(x(2))
  32.  
  33.           xdot1= x(1)*(1-x(1)) - ff1*x(2)
  34.           xdot2= ff1*x(2) -  ff2*x(3) - 0.4*x(2)
  35.           xdot3= ff2*x(3) - 0.01*x(3)
  36.   and
  37.           f1(u)=5*u/(1+b1*u)
  38.           f2(u)z2=0.1*u/(1+2*u)
  39.   The default value for b1 is 3.0.
  40.   The Scilab macros chain(t,x),f1(u),f2(u) code the dynamical system
  41.  
  42. SEE ALSO
  43.   portr3d,ode
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.